home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2008 February / PCWFEB08.iso / Software / Freeware / Miro 1.0 / Miro_Installer.exe / xulrunner / python / sha.py < prev    next >
Encoding:
Python Source  |  2005-10-28  |  317 b   |  12 lines

  1. # $Id: sha.py 39316 2005-08-21 18:45:59Z greg $
  2. #
  3. #  Copyright (C) 2005   Gregory P. Smith (greg@electricrain.com)
  4. #  Licensed to PSF under a Contributor Agreement.
  5.  
  6. from hashlib import sha1 as sha
  7. new = sha
  8.  
  9. blocksize = 1        # legacy value (wrong in any useful sense)
  10. digest_size = 20
  11. digestsize = 20
  12.